flowbow: Mark private fields as private
authorEmmanuele Bassi <ebassi@gnome.org>
Thu, 25 Feb 2021 11:25:05 +0000 (11:25 +0000)
committerEmmanuele Bassi <ebassi@gnome.org>
Thu, 11 Mar 2021 16:37:33 +0000 (16:37 +0000)
gtk/gtkflowbox.h

index 1b8f8115537a5dc9e0b3e62a1cc65886af3c5991..d620bc4c6d999005eaadeffb448f7cdd40ff2c55 100644 (file)
@@ -51,15 +51,19 @@ typedef struct _GtkFlowBoxChildClass  GtkFlowBoxChildClass;
 
 struct _GtkFlowBoxChild
 {
+  /*< private >*/
   GtkWidget parent_instance;
 };
 
 struct _GtkFlowBoxChildClass
 {
+  /*< private >*/
   GtkWidgetClass parent_class;
 
+  /*< public >*/
   void (* activate) (GtkFlowBoxChild *child);
 
+  /*< private >*/
   gpointer padding[8];
 };